home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / src / !runtime / alloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-18  |  470 b   |  20 lines  |  [TEXT/R*ch]

  1. #ifndef _alloc_
  2. #define _alloc_
  3.  
  4.  
  5. #include "misc.h"
  6. #include "mlvalues.h"
  7.  
  8. value alloc P((mlsize_t, tag_t));
  9. value alloc_tuple P((mlsize_t));
  10. value alloc_string P((mlsize_t));
  11. value alloc_final P((mlsize_t, final_fun, mlsize_t, mlsize_t));
  12. value copy_string P((char *));
  13. value copy_string_array P((char **));
  14. value copy_double P((double));
  15. value alloc_array P((value (*funct) P((char *)), char ** array));
  16. int convert_flag_list P((value, int *));
  17.  
  18.  
  19. #endif /* _alloc_ */
  20.